home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000272_news@watsun.cc.columbia.edu _Wed Feb 24 14:29:45 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA28589
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 24 Feb 1999 14:29:45 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA22849
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 24 Feb 1999 14:07:27 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Setserial High Speed Help
  11. Date: 24 Feb 1999 19:07:21 GMT
  12. Organization: Columbia University
  13. Message-ID: <7b1il9$m9t$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@mailrelay2.cc.columbia.edu
  15.  
  16. In article <7b191j$ss0$1@vixen.cso.uiuc.edu>,
  17. C Lance Moxley  <clm@uiuc.edu> wrote:
  18. : I need a hand with setserial. I have installed a Lavaport PCI serial
  19. : card (UART 16650) on a RedHat 5.2 system with the default RedHat kernel.
  20. : I can talk to both new serial ports just fine, but I can't talk to them 
  21. : with any speed over 115200bps. I installed this card to use with an 
  22. : external ISDN T/A and I want to get the maximum throughput from the 
  23. : serial port. What I don't understand is the "baud_base" and the "divisor"
  24. : options with setserial. How do I set these to allow 230400bps? I'd
  25. : like to use Kermit to talk to the T/A at that rate.
  26. I don't know about setserial or your serial card, but C-Kermit 7.0
  27. (currently in Beta test) supports high serial speeds in Linux in the normal
  28. POSIX way, i.e. without any of the hacks found in previous releases.
  29. C-Kermit's list of supported speeds on any particular platform comes from
  30. its scanning of the appropriate header files at compile time, and can be
  31. seen by typing:
  32.  
  33.   set speed ?
  34.  
  35. at the C-Kermit> prompt.  In Red Hat 5.2, where speeds are defined in
  36. /usr/include/termbits.h, serial speeds up to 460800 bps are supported.
  37.  
  38. C-Kermit 7.0 can be found at:
  39.  
  40.   http://www.columbia.edu/kermit/ck70.html
  41.  
  42. By the way, if anybody would care to try building it on older Linux
  43. systems and/or on non-Intel platforms, please let me know.
  44.  
  45. Thanks.
  46.  
  47. - Frank